
body {
    background-color: #f8f8f8;
    color: #333;
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
}

        .header-symbols,.header-logo,.footer-symbol {
    height: 33px;
    margin-right: 20px;
     transition: all 0.3s ease;
}
.header-symbols:hover,.footer-symbol:hover{
     transform: scale(1.15);
}
.header-logo:hover{
    transform: scale(1.05);
}
.header-symbols-text{
    margin-right: 10px;
    transition: all 0.3s ease;
}
.header-symbols-text:hover{
    color: green;
}
#header-ul-social {
    display: flex;
    list-style: none;
}
#header-ul-buttons {
    display: flex;
    list-style: none;
}
.header-logo{
    height: 80px;
}
#header {
    display: flex;
    justify-content: space-around;
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;
}
#header-socialmedia{
    margin-top:25px ;
}
#header-buttons{
    margin-top:25px ;
}
.header-symbols-text{
    font-size: 20px;
  font-weight: 500;
  color: black;
}
/* Container */
.checkout-container {
    width: 90%;
    max-width: 800px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Headings */
h1, h2 {
    color: #333333;
    text-align: center;
}

h1 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

h2 {
    margin-top: 30px;
    margin-bottom: 20px;
    font-size: 1.5em;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
}

/* Forms */
form {
    margin-bottom: 30px;
}

form label {
    display: block;
    margin-bottom: 6px;
    font-weight: bold;
    color: #555555;
}

form input {
    width: calc(100% - 24px);
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #ffffff;
    color: #333333;
}

/* Buttons */
button {
    display: block;
    width: calc(100% - 24px);
    padding: 12px;
    font-size: 16px;
    color:white;
    background-color: green;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
    transition: all 0.3s ease;
}

button:hover {
     background-color: darkgreen;
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 20px 0px;
}

/* Steps */
.step {
    display: none;
}

.step.active {
    display: block;
}

/* Progress Bar */
.progress-bar {
    position: relative;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
}

.progress {
    height: 100%;
    width: 0;
    background-color: #2e6f40;
    transition: width 0.5s ease;
}

.progress-step {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #2e6f40;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 1;
    top: -10px; /* Adjusted for better alignment */
}

.progress-step.completed {
    background-color: #ffffff;
    color: #2e6f40;
    border: 2px solid #2e6f40; /* Added border for completed steps */
}

/* Step Positions */
.progress-step[data-step="1"] {
    left: 0;
    transform: translateX(-50%);
}

.progress-step[data-step="2"] {
    left: 50%;
    transform: translateX(-50%);
}

.progress-step[data-step="3"] {
    left: 100%;
    transform: translateX(-50%);
}

/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.2em;
    }

    form input,
    button {
        width: calc(100% - 16px);
        padding: 10px;
        font-size: 14px;
    }

    .progress-bar {
        height: 15px;
    }

    .progress-step {
        width: 25px;
        height: 25px;
        top: -15px;
        font-size: 10px;
    }
}